phpmyadmin/tsconfig.json
Maurício Meneghini Fauth 7af4123b80
Add basic TypeScript support
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>
2022-06-11 15:36:41 -03:00

14 lines
260 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "es6",
"allowJs": true,
"checkJs": true,
"outDir": "./build/js",
"allowSyntheticDefaultImports": true
},
"include": [
"./js/src/**/*"
]
}