include json and js files in cms tsconfig

This commit is contained in:
Mads Rasmussen
2023-05-24 19:17:14 +02:00
parent ae88429373
commit efc6c2210f

View File

@@ -1,10 +1,13 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"allowJs": true,
"noEmit": false,
"outDir": "../dist-cms",
"rootDir": ".",
"rootDir": "./",
"composite": true,
"resolveJsonModule": true,
},
"include": ["./**/*.ts"],
"exclude": ["./**/*.test.ts", "./**/*.stories.ts"],
"include": ["./**/*.ts", "./**/*.json", "./**/*.js"],
"exclude": ["./**/*.test.ts", "./**/*.stories.ts", "tsconfig.json", "rollup.config.js"],
}