Adds a basic tsconfig.json file to be able to use TypeScript for static analysis of the JavaScripts files. TypeScript is not used for compilation yet. This enables the type checking in some IDEs. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
14 lines
260 B
JSON
14 lines
260 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "es6",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"outDir": "./build/js",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"./js/src/**/*"
|
|
]
|
|
}
|