phpmyadmin/tsconfig.json
Maurício Meneghini Fauth d888c29e0d
Move ./js directory to ./resources/js
- Related to https://github.com/phpmyadmin/phpmyadmin/issues/18512

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-10-25 11:24:14 -03:00

18 lines
499 B
JSON

{
"compilerOptions": {
"target": "esnext",
"moduleResolution": "bundler",
"allowJs": true,
"declaration": true,
"declarationMap": true,
"checkJs": true,
"outDir": "./build/js",
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
"strict": false,
"isolatedModules": true
},
"include": ["./resources/js/global.d.ts", "./resources/js/src/**/*"],
"exclude": ["node_modules"]
}