Plugins are now able to use import path shortcuts to import all API classes, utilities and the openticket globals. You can now import everything from "#opendiscord" instead of "../../src/index"
22 lines
632 B
JSON
22 lines
632 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"rootDir":"./",
|
|
"outDir": "./dist/",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"typeRoots": ["./node_modules/@types","./plugins/*/"],
|
|
"noEmit": false,
|
|
"allowImportingTsExtensions": false,
|
|
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"declaration": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["./src/*","./src/**/*","./plugins/*","./plugins/**/*"]
|
|
} |