webamp/tsconfig.json
Jordan Eldredge 3f6dfd91dd
Improve typing of .ts files in /modern (#950)
* Improve typing of Actions

* Make typing of MakiObjects more explicit

* Make parent optional

* Allow group to be initialized with all nulls

* Whitelist all runtime ts files for type checking

* Typecheck the entire modern codebase!

* Ignore typescript
2019-10-18 06:34:10 -07:00

28 lines
543 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"target": "esnext",
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strict": true,
"jsx": "preserve",
"noEmit": true,
"pretty": true
},
"include": [
"js/**/*.js",
"js/**/*.ts",
"js/**/*.tsx",
"modern/**/*.ts",
"modern/**/*.tsx"
],
"exclude": [
"node_modules",
"**/*.spec.ts",
"demo/built",
"modern/src/Dashboard.tsx"
]
}