colouring-montreal/app/tsconfig.json
Maciej Ziarkowski 9826ba784c Point tsconfig to client and server TS files only
Previous config defined a glob for all TS files. But only the files
required from the client or server root files need to be transpiled.
This prevents the whole project build failinig due to one corrupt source
file that might not be committed to the repository, and isn't actually
used anywhere.
2020-03-08 15:08:26 +00:00

17 lines
401 B
JSON

{
"compilerOptions": {
"outDir": "./build",
"allowJs": true,
"target": "es2017",
"jsx": "react",
"lib": ["es6", "es2015", "es2017", "dom"],
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"noImplicitAny": false
},
"files": [
"./src/index.ts",
"./src/client.tsx"
]
}